home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_gettext.idb / usr / freeware / src / gettext / patches.z / patches
Encoding:
Text File  |  1999-04-16  |  1.5 KB  |  48 lines

  1. --- ./intl/gettext.c    Thu Nov  2 12:40:31 1995
  2. +++ ../gettext-0.10/./intl/gettext.c    Thu Apr  1 11:42:53 1999
  3. @@ -67,4 +67,6 @@
  4.  #ifdef _LIBC
  5.  /* Alias for function name in GNU C Library.  */
  6.  weak_alias (__gettext, gettext);
  7. +#elif defined(__sgi)
  8. +#pragma weak gettext = gettext__
  9.  #endif
  10. --- ./intl/dgettext.c    Tue Sep 26 20:42:09 1995
  11. +++ ../gettext-0.10/./intl/dgettext.c    Thu Apr  1 11:41:57 1999
  12. @@ -56,4 +56,6 @@
  13.  #ifdef _LIBC
  14.  /* Alias for function name in GNU C Library.  */
  15.  weak_alias (__dgettext, dgettext);
  16. +#elif defined(__sgi)
  17. +#pragma weak dgettext = dgettext__
  18.  #endif
  19. --- ./intl/bindtextdom.c    Wed Sep 27 16:14:38 1995
  20. +++ ../gettext-0.10/./intl/bindtextdom.c    Thu Apr  1 11:43:55 1999
  21. @@ -169,4 +169,6 @@
  22.  #ifdef _LIBC
  23.  /* Alias for function name in GNU C Library.  */
  24.  weak_alias (__bindtextdomain, bindtextdomain);
  25. +#elif defined(__sgi)
  26. +#pragma weak bindtextdomain = bindtextdomain__
  27.  #endif
  28. --- ./intl/textdomain.c    Tue Sep 26 20:55:11 1995
  29. +++ ../gettext-0.10/./intl/textdomain.c    Thu Apr  1 11:43:23 1999
  30. @@ -94,4 +94,6 @@
  31.  #ifdef _LIBC
  32.  /* Alias for function name in GNU C Library.  */
  33.  weak_alias (__textdomain, textdomain);
  34. +#elif defined(__sgi)
  35. +#pragma weak textdomain = textdomain__
  36.  #endif
  37. --- ./intl/dcgettext.c    Sat Nov 25 06:30:40 1995
  38. +++ ../gettext-0.10/./intl/dcgettext.c    Thu Apr  1 11:44:27 1999
  39. @@ -336,6 +336,8 @@
  40.  #ifdef _LIBC
  41.  /* Alias for function name in GNU C Library.  */
  42.  weak_alias (__dcgettext, dcgettext);
  43. +#elif defined(__sgi)
  44. +#pragma weak dcgettext = dcgettext__
  45.  #endif
  46.  
  47.  
  48.